home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / ASM-ARM / SOCKET.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  953b  |  43 lines

  1. #ifndef _ASMARM_SOCKET_H
  2. #define _ASMARM_SOCKET_H
  3.  
  4. #include <asm/sockios.h>
  5.  
  6. /* For setsockoptions(2) */
  7. #define SOL_SOCKET    1
  8.  
  9. #define SO_DEBUG    1
  10. #define SO_REUSEADDR    2
  11. #define SO_TYPE        3
  12. #define SO_ERROR    4
  13. #define SO_DONTROUTE    5
  14. #define SO_BROADCAST    6
  15. #define SO_SNDBUF    7
  16. #define SO_RCVBUF    8
  17. #define SO_KEEPALIVE    9
  18. #define SO_OOBINLINE    10
  19. #define SO_NO_CHECK    11
  20. #define SO_PRIORITY    12
  21. #define SO_LINGER    13
  22. #define SO_BSDCOMPAT    14
  23. /* To add :#define SO_REUSEPORT 15 */
  24. #define SO_PASSCRED    16
  25. #define SO_PEERCRED    17
  26. #define SO_RCVLOWAT    18
  27. #define SO_SNDLOWAT    19
  28. #define SO_RCVTIMEO    20
  29. #define SO_SNDTIMEO    21
  30.  
  31. /* Security levels - as per NRL IPv6 - don't actually do anything */
  32. #define SO_SECURITY_AUTHENTICATION        22
  33. #define SO_SECURITY_ENCRYPTION_TRANSPORT    23
  34. #define SO_SECURITY_ENCRYPTION_NETWORK        24
  35.  
  36. #define SO_BINDTODEVICE 25
  37.  
  38. /* Socket filtering */
  39. #define SO_ATTACH_FILTER        26
  40. #define SO_DETACH_FILTER        27
  41.  
  42. #endif /* _ASM_SOCKET_H */
  43.